home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / EMIL.ARJ / MAKEFILE < prev    next >
Text File  |  1991-05-07  |  545b  |  21 lines

  1. # Makefile for TESTHI program
  2. # Copyright (C) 1991 by Nicholas Wilt.    Freely distributable as long
  3. # as it is not separated from the rest of the Extended Memory
  4. # Interface Library distribution.
  5.  
  6. # options for building TESTHI with Microsoft C have been commented
  7. # out.
  8.  
  9. # Directory where libraries are
  10. LIB=\tc\lib
  11. #LIB=\c600\lib
  12.  
  13. testhi.exe: testhi.obj
  14.      tlink $(LIB)\c0s testhi hi,testhi.exe,,\
  15.                    $(LIB)\cs $(LIB)\maths
  16. #    link /co testhi hi,,,$(LIB)\llibce.lib;
  17.  
  18. .c.obj:
  19.     tcc -c -ms -v -w-pia $<
  20. #    cl /c /AL /Zi $<
  21.